hi,
Please tell me how to use radio buttons and check boxes in dhtml grid. as i have to incorporate it in the first column of my grid.
My code is as below
xmldata = xmldata+"<![CDATA[First Second ]]>";
}while(rs.next());
}else{
xmldata=null;
}
}
catch (SQLException ex)
{
System.err.println(ex.getMessage());
}finally{
if(rs!=null)
rs.close();
if(stmt!=null)
stmt.close();
if(con!=null)
con.close();
}
query = query.replaceAll("\+",“plus;”);
%>
<% if(xmldata!=null) { %>
|
mygrid = new dhtmlXGridObject(‘gridbox’);
mygrid.hdrSizeA = 1000;
mygrid.hdrSizeB = 1000;
mygrid.hdrSizeC = 1000;
mygrid.setImagePath(“imgs/”);
mygrid.setSkin(“dark”);
mygrid.enableRowsHover(true,‘grid_hover’)
mygrid.init();
mygrid.enableMultiline(true);
mygrid.parse(’<?xml version="1.0" encoding="UTF-8"?> Select Journal Name Article Name Author Name IssueYearVolumeStart PageEnd Page <%=xmldata%>’);
By using radio button code also it is not working.
Thanks and regards