Forum Replies Created
-
Author
-
Hi @PeterStoev,
As part of the method used in “initeditor” is why depedendo the User that is logged and the value of the cell that it is changing, the dropdownlist will have a different content. If I use “createeditor” I can not leave the options of dropdownlist
dynamics.As part of the method used in “cellclassname” in the database are registered all types, I get through the kind of “status” of the JSON request and compare with the value of the column “status of the grid” not found otherwise.
sorry for wrong writing does not speak English, use google translate ๐
November 17, 2014 at 1:29 pm in reply to: progressbar ajaxStart and ajaxStop progressbar ajaxStart and ajaxStop #62868November 17, 2014 at 1:28 pm in reply to: get specific object of records get specific object of records #62867Hi @nadezhda,
not work.
success: function( result ){ var filter = JSON.parse( result ); if( filter.statusProcess == 'success' ){ var data = { label1: filter.name1, label2: filter.name2, label3: filter.name3 }; $('#jqxGrid').jqxGrid('addrow', filter.id, data, 'first'); var id = $('#jqxGrid').jqxGrid('getrowid', filter.id); // <-- returns null $('#jqxGrid').jqxGrid('selectrow', id); alert('SUCCESS'); } else if( filter.statusProcess == 'warning' ){ alert('ERROR'); } },
November 14, 2014 at 3:41 pm in reply to: progressbar ajaxStart and ajaxStop progressbar ajaxStart and ajaxStop #62779November 6, 2014 at 11:10 am in reply to: pass dynamic variable to DataAdapter pass dynamic variable to DataAdapter #62299Thanks @Peter Stoev ๐
October 31, 2014 at 5:03 pm in reply to: masks with variable length masks with variable length #61975October 31, 2014 at 12:06 pm in reply to: masks with variable length masks with variable length #61958Hi Dimitar,
not good, with 10 digits the space of 11ยบ digit is visible, it would have to vanish
with 10 digits is thus:
(11) 2222-3333_
would have to disappear “_” if 10 digitsthought about it but does not work
$("#jqxMaskedInput").jqxMaskedInput({ width: '250px', height: '25px', mask:'(##) ####-####[0-9]', }).on('change', function(e){ var value = e.args.value.replace(/[^0-9]/g,''); if( value < 11 ){ $("#jqxMaskedInput").jqxMaskedInput({ mask:'(##) ####-####' }); // 10 digit }else{ $("#jqxMaskedInput").jqxMaskedInput({ mask:'(##) #-####-####' }); // 11 digit } $('#jqxMaskedInput').jqxMaskedInput('val', value); });
October 30, 2014 at 12:59 pm in reply to: grid always updated in real time grid always updated in real time #61878thank you so much
October 29, 2014 at 8:39 pm in reply to: grid always updated in real time grid always updated in real time #61827@dimitar Sorry, should have read more carefully the documentation.
Help me with one more question,
how to let the invisible loadelement when execute the updatebounddata.
used the parameter"showdefaultloadelement: false"
more keeps appearingOctober 28, 2014 at 11:57 am in reply to: grid always updated in real time grid always updated in real time #61729Is not good, the grid lock and the user can not use the grid
would not have a way to update the data without interfering with filters?plus the message appears on the console -> Uncaught TypeError: Cannot read property ‘0’ of null
my code:
window.setInterval(function(){ $("#jqxgrid").jqxGrid('updatebounddata'); }, 2000);
October 28, 2014 at 10:51 am in reply to: grid always updated in real time grid always updated in real time #61724Dimitar thank you so much ๐
October 27, 2014 at 3:13 pm in reply to: grid always updated in real time grid always updated in real time #61680Hi Dimitar ๐
example:
ย ย ย ย ย Admin -> insert a new resgistro
ย ย ย ย ย User -> grid view in realtime WHAT entered the AdminStyle Chat, a guy writes something while another guy viewing.
understand? -
AuthorPosts