Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I did not find any way to apply column width in flexigrid in terms of percentages.
I have given absolute lengths as follows:

colModel : [
    {display:'ISO', width:50},
    {display:'Name', width:300},
    {display:'Printable Name', width:200},
    {display:'ISO3', width:200},
    {display:'Number Code', width:100},
],

So what is happening is, when I resize the last columns the there is a white space to the right of it. Please refer screenshot.

enter image description here

Is there a way to make last column occupy the remaining space and rest of the columns absolute. This feature has been implemented in Flex in our app and there is no way I can know how it is done.

share|improve this question

1 Answer

Hiya demo http://jsfiddle.net/GNqZn/1/show and http://jsfiddle.net/GNqZn/1/

YOu probably need to write a custom function like this I wrote for this specific case in demo above:

In the demo above my table view had 700 width and 4 columns before number code hence 700/4

Read here: http://groups.google.com/group/flexigrid/browse_thread/thread/3da4473a5f467cea

Hope this will help you in right direction and demo will help you to play around. cheers!

D'uh this is no silver bullet but you can make it by tweaking for your specific need. :)

UPDATE 5th June To give OP a simple demo: http://jsfiddle.net/2TkyR/22/ or http://jsfiddle.net/gaNZR/11 or http://jsfiddle.net/gaNZR/11/show/

If I may recommend it is vital if you read bit more about the plugin, play around a bit you will feel more confident.

Please see an image attached below All you need to do is add this customize function according to your needs.

Please Read this: http://flexigrid.info/ and some good tutorials & this: http://www.kenthouse.com/blog/2009/07/fun-with-flexigrids/

Jquery code

function GetColumnSize(percent){ 
    screen_res = (700/4)*0.95; // 700 is the width of table;
    col = parseInt((percent*(screen_res/100))); 
    if (percent != 100){ 
       // alert('foo= ' + col-18);
        return col-18; 
    }else{ 
       // alert(col);
        return col; 
    } 
} 

call it like this width : GetColumnSize(100),

   $("#flex1").flexigrid({
        url: 'post2.php',
        dataType: 'json',
        colModel : [
            {display: 'ISO', name : 'iso', width : 40, sortable : true, align: 'center'},
            {display: 'Name', name : 'name', width : 180, sortable : true, align: 'left'},
            {display: 'Printable Name', name : 'printable_name', width : 120, sortable : true, align: 'left'},
            {display: 'ISO3', name : 'iso3', width : 130, sortable : true, align: 'left', hide: true},
            {display: 'Number Code', name : 'numcode', width : GetColumnSize(100), sortable : true, align: 'right'}
            ],

2 Images below

Image 1 enter image description here

Image 2 enter image description here

share|improve this answer
it is not accurate. – MotaBOS May 22 '12 at 12:05
1  
Hiya @MotaBOS Yep if you read my answer - I mentioned its for your help and give you a good start; not a silver bullet but I will see if I can read your question and help further, – Tats_innit May 22 '12 at 21:47
Thanks for the answer. But I am not understanding what are the 2 fiddles showing. Can you explain that after we set the value in the form how can we see the form. Or is it not working in this fiddle and I will have to implement in project. – MotaBOS May 29 '12 at 13:06
@MotaBOS Hiya man - Glad I can help - code is straight fwd - cool so go to this page: link => flexigrid.info scroll down to the end example 3 <You can right click and see the source code> - NOw in your case where ever you have your flexigrid hooked up; you need to attach the custom Grid function GetColumnSize like the one mentioned in the post :) something like this {display: 'Number Code', name : 'numcode', width : GetColumnSize(100), sortable : true, align: 'right'} If you can make a js fiddle I can totally help you out man, Cheers! – Tats_innit May 30 '12 at 3:28
Somehow I am not able to render a flexigrid in the fiddle. The incomplete fiddle is located here - jsfiddle.net/ashwyn/BHkAy/1. If you can make it work then you can apply your solution and tell me. Thanks. On the other hand, I tried using GetColumnSize in my project and by "it is not accurate" I mean't that whatever value I give there it looks perfect but when I resize column it agains gives the same problem. You will understand what I am saying when we both are on the same page i.e. fiddle. Please let me know. Many thanks for your replies. – MotaBOS Jun 4 '12 at 11:02
show 8 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.