Search Results

Type: Posts; User: hogaf

Search took 0.01 seconds.
  1. hi

    As I mentioned before the GridPanel's tableview (the body part) will be masked upon store reload by default,
    But if you consider to mask the entire grid you can write something like this:

    ...
  2. Hi @barnali,

    If you want to show tooltip on a row column, You can add a Renderer to it, eg:



    X.Column().Renderer("metadata.tdAttr = 'data-qtip=\"' + value + '\"'; return value;")
  3. Hi @barnali,

    You can find the DropDown #GridPanel with Grouping sample here:

    https://examples3.ext.net/#/Form/DropDownField/Overview/
  4. Hi @rguardado,

    Have you considered to use DisplayField instead?!
  5. Hi @bogc,

    Combobox's Ext.view.BoundList uses Ext.view.BoundListKeyNav to support keyboard navigation. so you might add custom behavior to the defaultHandlers function in BoundListKeyNav to handle...
  6. Hi registrator,

    As I recall the example solution consists of tabs with the frame inside. you can simply find out whether or not the view is loaded inside an iframe and then redirect the whole...
  7. Hi @registrator,

    Thank you for the extra information,
    I'm afraid that you have defined X.ResourceManager() somehow at your layout page. There'e no need to define the X.ResourceManager() When your...
  8. Hi,

    Would you please provide more information about the content of your view file?!

    You can find more about a helpful post here:
    Forum Guidelines For Posting New Topics
  9. @registrator
    Since the action method call is made by a DirectEvent and you intend to return a view then you should return an instance of Ext.Net.MVC.PartialViewResult which is responsible to produce...
  10. Since the target is a class declared using Ext.define, then the override method of that class is called upon Ext.override So it's better to not directly use of override method which is deprecated As...
  11. Hi @registrator,

    You should return an object of type Ext.Net.MVC.PartialViewResult. you can find more about it on Dynamic Partial Rendering section : http://mvc2.ext.net/#/Dynamic_Partial_Rendering
  12. @matt,

    It seems capturing the field's value is buffered (500 ms is the default value) and it is called upon field change event. So if we apply the onFieldChange body at the time of calling...
  13. Hi @matt,

    You might find it useful to override the default behavior:



    Ext.net.FilterHeader.override({
    initField: function (field, column) {
    this.callParent(arguments);
  14. @matrixwebtech,
    The GridPanel's tableview (the body part) will be masked upon store reload by default,
    But if you consider to mask the entire grid you can use the Store events as Daniil mentioned
  15. Hi @matrixwebtech,
    You can register a listener in order to show the loading mask once a request is made, eg:



    @(X.TreePanel()
    .Listeners(l =>
    {
    ...
  16. I think it's worth mentioning that I just succeeded to extend my work to support Ext.Net 3.0.0 beta and Extjs 5 as well.

    more info on Ext.Net MVC 3.0.0 PDate (Extjs 5 persian date):...
  17. Hi I've created the Ext.Net PDate MVC Builder using vahid's library.

    You can find more about it here:
    http://hogaf.github.io/archive/2014/11/20/ext-net-2-5-3-pdate/

    By the way I've done...
Results 1 to 17 of 17