jQWidgets Forums
Forum Replies Created
-
Author
-
May 2, 2018 at 5:34 pm in reply to: Change grid size when window resize Change grid size when window resize #100024
Hello Stanislav,
Appreciate to your reply, but not really
I don’t want to use tabs. I don’t care if the grid cells not responsive.
I would like something this:
https://drive.google.com/file/d/1GLp_ERfy0Zd5UxGjSacHRRvwdSpQPh5T/view?usp=sharingNow, at the first load everything is okay, because the grid size is viewPort.height – 74 px, and when I resize the windows I’d like to resize the grid again to the new viewport size – 74 px.
And of course I’d like to be fast therefore don’t need to reload the data, only re draw the grid.Regards,
drakiMay 1, 2018 at 12:04 pm in reply to: Change grid size when window resize Change grid size when window resize #99984Hello Stanislav,
Thank you for your response, the splitters are working fine. But earlier using bootstrap to make my divs responsive. How I see, the splitter is do not cooperating with bootstrap responsive tags. Maybe still have a solution for change the grid size, when the browser resized?
Regards,
drakiDecember 4, 2014 at 10:22 am in reply to: Filtertype: input the listbox does not open Filtertype: input the listbox does not open #63782Hello Peter!
I’m found the mistake and I don’t know how can I solve it. The problem is the list box what is dropping down is show outer of all div on my page under the footer, but the jqxgrid in inner the div where is normally in the source. If I click on the opening arrow the script is made a white div bottom of the page. And I don’t know why. Do you have any idea?
Here the full source of my page: http://pastebin.com/iHBYNn29
Thanks,
DrakiDecember 2, 2014 at 8:35 pm in reply to: Filtertype: input the listbox does not open Filtertype: input the listbox does not open #63670Hello Peter!
I’m implemented the filters like the sample. I gave a showfilterrow porpety to every column, but dose not work again. And yes I dont have a unique datafield in the last three line because there-s only html thing (buttons). The first times when I started to use the table the filter row was worked but now it is not. I’m tried to change the type to chekedlist and the type is changed but the listbox is a same is not opening
Any other solution?
Thanks,
DrakiDecember 1, 2014 at 2:05 pm in reply to: After redirect jump and select to the updated line After redirect jump and select to the updated line #63589Hi Peter!
I solved with PHP. On the page where I init the grid I’m using an IF. If i get an index loading the table and select the line what index a got from the other page. If don’t get an index I’m loading the normal table select the first line.
This is the half. Because this is just only okay when I’m editing an existed user.
If i want to add a new user I’ve got to button the first is just save normally and redirect to index page and the other is redirect to the new worksheet.Cheers,
DrakiDecember 1, 2014 at 1:25 pm in reply to: After redirect jump and select to the updated line After redirect jump and select to the updated line #63583Hello Again!
I’ve got a page where I can add new users to the database. And after when I added the user I would like to assigns a new worksheet to user. And normally after add the user and push the submit button is redirect to the main page where is the grid. And I need to search the user if I would like to add a new worksheet beacuse the button is on the line where is te user. This is the reason why I would like to select and ensurerow visible after redirect. Any possibility to do this?
Thanks,
DrakiNovember 23, 2014 at 9:54 am in reply to: After redirect jump and select to the updated line After redirect jump and select to the updated line #63182Hello Peter!
I understand you but this is not an option for me
I want something like when I push the edit button in the line is going to post the index of the line. This is OK this is easy. But after if i push the save button, I wants go back to page where is a table (no problem for reloading) and I do
$(document).ready(function() { $('#jqxgrid').jqxGrid('selectrow', 0); });
this with the index what I callback.
And after somehow the table needs to scroll down to this line if it is not in the first few line whats is seem.
This is possible?Thanks,
DrakiNovember 21, 2014 at 8:39 pm in reply to: Post 1st and after every clicked row Post 1st and after every clicked row #63152Hello Dimitar!
Yes, it is my fault but now it is works fine.
Thanks very much your help!Best Regards,
DrakiNovember 15, 2014 at 11:29 am in reply to: Post 1st and after every clicked row Post 1st and after every clicked row #62794I’m tried with :
'getcellvalue', 0, "ContactEmail"
too. And its a same.November 15, 2014 at 11:02 am in reply to: Post 1st and after every clicked row Post 1st and after every clicked row #62792Hello Dimitar!
Thanks for your reply. I’m trying to do the in this way after load to post the first line but is not works.
The post is blank. I’m trying in this way:
$(document).ready(function() { // Select the first row in the table automatically $('#jqxgrid').jqxGrid('selectrow', 0); var first_row = 0; var loaddata = $('#jqxgrid').jqxGrid('getrowdata', first_row); $.ajax({ type: "POST", url: "onload.php", //beállítod a php fájlod data: loaddata, //itt küldöd el az adatokat success: function(data){ $('#leftc_mid_top').html(data); } }); });
Can you help me what is the problem?
Thanks,
Draki -
AuthorPosts