Hello,
Thanks for investigations.
Also the scroll:1 is not supposed to work well with datatype function. There is a such discussion here.
Also could you please download the 3.7 beta from GitHub and test instead if the problem is fixed.
Best Regards
Tony
Hello,
What you use grid as subgrid or “pure” subgrid?
For the “pure” subgrid this should work.
If you use grid as subgrid you should convert the id in appropriate way:
See this:
Regards
Tony
Hello Oleg,
Thanks for the test case.
Now why the masked plugin work in editing modules and does not work in searchFilter?
The reason for this is that in editing modules we have “uniquie” id's where we bind the masked plugin and this work ok.
Search Filter work little different.
1. When we have custom dataInit and DataEvents we create a template for all these fields.
2. When we select such one we activate the appropriate table row element.
3. When we click the add button we clone the template and insert it after the active row.
In order to ilustrate this:
Create a form (not using jqGrid) something like this:
Apply masked plugin to input of class= 'field1'
jQuery(“.field1″).mask(“99.99″);
Then clone the table row of class'myclass' and insert it before or after this row
var row = jQuery(“.myclass”);
var newRow = row.clone(true).insertAfter(row);
See if the plugin will work – it will not work.
This is a way that searchFilter works.
In order to fix we should unbind all existing events of the cloned row elements and bind it again.
Will try to fix this, but not in the upcomming 3.7
Best Regards
Tony
Hello,
Please read carfully the installation guide here:
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:how_to_install
You missed a lot of thisnfgs.
1. You load the old theme CSS file
2. You do not load jQuery UI theme
Regards
Tony
Hello,
I think that the problem here is that you have a rows with equall id's. This will cause this behaviour.
Regards
Tony
Hello,
Which version of jqGrid is used?
Regards
Tony
Hello,
This is not possible.
Regards
Tony
Hello,
It all depends how is your code organized and when and where you call
$gird.trigger('reloadGrid');
Regards
Tony
Hello,
This feature is not supported.
Best Regards
Tony
Hello,
In order to work this you should include the appropriate jQuery UI theme css file.
Refer here for installation:
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:how_to_install
Regards
Tony
Hello,
I'm not sure, but you must put the appropriate header before sending the data to the grid.
For php this look like:
header(“Content-type: text/xml;charset=utf-8″);
Regards
Tony
Hello,
Thanks for this.
Currently the way that this is organized is not good. There is a work on this, but the main purpose not to implement it is that we need to save the code of all existing users.
Best Regards
Tony
Hello,
The grid demo files contain a lot of examples with xml.
Regards
Hello,
I mean a code. Also if you use cell edit and the try to use a function which is for inline edit this will not work
Regards
Tony
Hello,
You can do this
jQuery('#gs_sector',”#gbox_grid”).val('stuff');
where the “grid” is the id of the grid.
Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top