Hi there,
I'm seeing an issue with setting the width of the field picker in the Filter Builder.
Look at this example using 9.0 from your website:
http://www.smartclient.com/docs/9.0/a/system/reference/SmartClient_Explorer.html#bigFilter
Using the code below, the smartclient.com example seems to work correctly and it makes the width of the field picker 600px as defined. However, I tried the same thing with the SDK Feature Explorer using the nightly build from 10/7/13 and the same example still honors the pickListWidth but the width of the field itself is not 600px as it should be.
I'm seeing an issue with setting the width of the field picker in the Filter Builder.
Look at this example using 9.0 from your website:
http://www.smartclient.com/docs/9.0/a/system/reference/SmartClient_Explorer.html#bigFilter
Using the code below, the smartclient.com example seems to work correctly and it makes the width of the field picker 600px as defined. However, I tried the same thing with the SDK Feature Explorer using the nightly build from 10/7/13 and the same example still honors the pickListWidth but the width of the field itself is not 600px as it should be.
Code:
var testData =[]; for (var i=0; i<=200; i++) { testData[i] = { name: "field"+i, title: "Field "+i, type: "text" }; } isc.DataSource.create({ ID: "bigFilterDS", clientOnly: true, fields: [ { name: "name", type: "text" }, { name: "title", type: "text" }, { name: "type", type: "text" } ], testData: testData }); isc.FilterBuilder.create({ ID:"advancedFilter", fieldDataSource: "bigFilterDS", fieldPickerProperties:{textMatchStyle:"substring", width:600, pickListWidth:600}, criteria: { _constructor: "AdvancedCriteria", operator: "and", criteria: [ {fieldName: "field2", operator: "iStartsWith", value: "C"}, {operator: "or", criteria: [ {fieldName: "field73", operator: "notEqualField", value: "field191"}, {fieldName: "field130", operator: "iContains", value: "B"} ]} ] } });
Comment