Hello,
Use
beforSubmit: function(pdata) {
// do something here
}
pdata is array that contain the from the form. Also refer to docs
Regards
Tony
Hello,
I found the bug and it is corrected.
Regards
Tony
Hello,
Sorry for this typing error in the docs. Now the right is
The wrong code is:
<script src=”js/jquery.jqModal.js” type=”text/javascript”>
<script src=”js/jquery.jqDnR.js” type=”text/javascript”>
Best Regards
Tony
Hello,
This I will see is standart behavior.
What mean 50% or 100%:
The reason is that without a parent defined height,
the height:100% has nothing to factor 100% percent of,
and will default to a value of height:auto- auto is an “as needed value”
which is governed by the actual content, so that the height:100% will
a=only extend as far as the content demands.
The solution to the problem is by assigning a height value to the parent
container, in this case, the body element. Writing your body stlye to
include height 100% supplies the needed value.
body {
margin:0;
padding:0;
height:100%;
}
Regards
Tony
Hello,
Try with this
jsonReader: {
Hello,
Really very strange. To test find delGridRow method, then find
if( typeof p.onclickSubmit === 'function' )
p.delData = p.onclickSubmit(p) || {};
after this make
alert(p.delData.wmemno) ;
After this find
var postd = $.extend({oper:”del”, id:postdata},p.delData);
and then make the same
alert(postd.wmemno)
See the results.
I will try to test this again.
Regards
Tony
Hello,
For inline editing there is no validation, but you can use
saveRow method and make you own validation here.
Regards
Tony
Hello,
maybe this will help. (for delete)
onclickSubmit: function(params){
var gsr = $(“#grid_id”).getGridParam('selrow');
var sdata = $(“#grid_id”).getRowData(gsr);
return {wmemno: sdata.MemNo}
}
In my project this work
Hello,
Use the undocumented
gridComplete event for this purpose.
It fires after all is done in the grid.
Best Regards
Tony
Hello,
Actually this is good recommendation.
Thank you. I will see how will implent this.
Best Regards
Tony
Hello,
What values are posted when you use delete?
It is very strange, since the approach is the same as those in edit.
Regards
Tony
Hello,
Did you mean dpended listboxex?
Currently not possible, but simply you can do that easy using the same
Hello,
What do you try to do?
Regards
Tony
Hello,
I highly recommend to check this server side.
I will think how I can add something like beforeSearch Event
Regards
Tony
Hello,
This can be extended easy.
Open the grid.formedit.js and find the function
function checkValues(val, valref)
You will have idea how easy you can extend this.
Best Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top