jquery-bootgrid icon indicating copy to clipboard operation
jquery-bootgrid copied to clipboard

How to put input box & Select box in row column in HTML with Bootgrid

Open sushant357 opened this issue 10 years ago • 6 comments
trafficstars

I tried to put input box & Select box in row column in HTML with Bootgrid but input box is not coming td is blank & In Select box he removes all options tag & select tag also if i typed in td like below

result showing me as Option1Option2Option3Option4

Please let me know asap it's urgent...

sushant357 avatar Jun 12 '15 08:06 sushant357

You will find here the command button example. To see the JavaScript code press the JavaScript tab below the demo.

rstaib avatar Jun 12 '15 08:06 rstaib

I sort this issue but now issue with selectpicker Selectpicker.js - Select box for styling is not working with boot-grid how can i solve this problem... there is any variable through i can call a function?

sushant357 avatar Jun 12 '15 10:06 sushant357

Did you initialize your sub plugins like selectpicker.js inside the loaded event? Because otherwise it would not work. Also be aware of the known issue described here. To keep it simple for you, I added an example below how to do it right with the known issue I mentioned above in mind:

var grid = $("#selector")
    /* First apply initialize and load events */
    .on("loaded.rs.jquery.bootgrid", function()
    {
        /* Initialize sub plugins here */
    }
    /* Then initialize bootgrid */
    .bootgrid({...});

rstaib avatar Jun 12 '15 10:06 rstaib

Issue #193 Theres a guy who tweaked bootgrid to allow html. Works great for me! @sushant357 @rstaib

surgiie avatar Jul 21 '16 17:07 surgiie

@surgiie Thanks for that link. I was just looking into this like an hour ago!

odero avatar Jul 21 '16 19:07 odero

try out http://gijgo.com/grid/demos/bootstrap-grid-inline-edit

stvowi avatar Sep 23 '17 00:09 stvowi