3.2.0

Active Widgets 2.6.4 on IE11

Hi Alex,

Thanks for the support shared from past 5 years to me .

We have purchased 2.6.4 license to make our app to run on IE11.

But we saw a problem here, not able to create pop up div in grid on IE11

can you please share sample code to create a dropdown list inside grid column to work on IE11

Appreciate your response - we are stuck on this to proceed further and have just 2 months of time..to upgrade app to IE11 - and we use Active widgets at 60 % of the code.
Gattu
February 5,
this is not a working example and you will need to adapt it to your specific needs

dropdown values stored in each row


function itemText(i){ // only item index is exposed - BUG
var col = this.$0; // column index is in internal $0
var row = this.$1; // row index is in internal $1
var cList = G1.getCellText(4,row);
var aList = cList.split('|');
return aList[i];
}

function itemCount(){
var col = this.$0;
var row = this.$1;
var cList = G1.getCellText(4,row);
var aList = cList.split('|');
return aList.length;
}

var list1 = new AW.UI.List;
list1.setItemText(itemText);
list1.setItemCount(itemCount);
list1.setStyle("width","300");


var G1 = new AW.UI.XMLGrid;
G1.setId("G1");
G1.Columns=["x1","x2","x3","x4","ddv","","Description"];
G1.Table.setColumns(["x1","x2","x3","x4","DDVALUES","x6","DESCRIPTION"]);
G1.setHeaderText(G1.Columns);
G1.setColumnIndices([6]);
G1.Table.response(unescape("_G1Data_"));
G1.setCellModel(G1.Table);
G1.setRowCount(G1.Table.getCount());

G1.setCellTemplate(new AW.Templates.xCombo, 6);
G1.setPopupTemplate(list1, 6);
G1.setCellEditable(true,6);

document.write(G1);



Hope it helps.
Erik
February 6,

This topic is archived.

See also:


Back to support forum