What is the most complex expression you've seen/used ?
and what's the limit on the length of the expression that can be used ? I seem to recall something to that effect a while back but can't locate it now !!
how to increase row size using jquery.. I have column like this.
{ name: 'Comments', index: 'Comments', editable: true,
editype: 'textarea', editoptions: { rows: "2", cols: "10"} }
Thanks
how to disable or enable the perticular column in the jquery?
that is I have three columns in the jquery.. all three all dropdown list boxes.
Initially all three dropdownlist boxes are disabled on selection firstdropdown I need to eable the second dropdow list box and second I need to enable the third dorpdonwl list box..
please can anybody help…
I am calling a COM component in IE. Here is the code
<object align="left" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
id="Winvideo-Silverlight2RTW-Hypervideo-Part1-WMVa.wmv">
<param name="FileName" value="Winvideo-Silverlight2RTW-Hypervideo-Part1-WMVa.wmv">
<param name="AutoRewind" value="true">
…
hi,
I have a javascript function..
<script type="text/javascript">
var RowClick = function() {
$("#mytable").click(
$("#showgrid").load('/Products/List/Items/'));
};
</script>
Can I call this function on onclick event on tr?
I am calling something like this?
<tr class="something"…
I have a DataTable with column ID, Name, RootID. The tree stucture is implmented using the RootId field. If the RootId is null it is considered as Root Node. How to create an Nlevel tree using the DataTale.
eg. 1 Manager null,
2 Project Lead 1,
3 Test Lead 1,
4 Sr Soft Eng 2,
…
Hello Friends,
Can any one tell me how to insert link in to Jquery grid column,,
that is I have a column with Edittype
{ name: 'Comments', index: 'Comments', editable: true, editype: 'textarea', editoptions: { rows: "2", cols: "10"} }
I need to insert comments in to this..
so if I have link to click on the column so…
Hello friends,
I am using this code to check wheather my checkbox is checked or not..
$('#btnMassEdit').click(function() {
$('#ExceptionDetails input[type=checkbox]').each(function() {
if ($(this).attr('checked')) {
$('#specialist-tab').tabs('url', 3,…
Hello friends.
I have this code I am checking wheather checkbox i checked or not..
$('#btnsubmit').click(function() {
$('#Details input[type=checkbox]').each(function() {
if ($(this).attr('checked')) {
alert("selected");
return false;
…
Lets have 2 repositories, one containing the actual data repo and a bare repository which is loaded with deltas from the actual data repository by doing a git push from data repo to bare repo. Hope you have understood the model that am using here.
Am creating clones by cloning the bare repo, and i…
Hello Friends,,
I have this two Action result methods.
public ActionResult GetStudentInfo(StudentBE s)
{
return PartialView("editStudent", s);
}
public ActionResult GenericList()
{
StudentBE codes = new StudentBE();
…
I am developing a 3-tired ASP.NET C# web application and was wondering where should the sessions be managed. I have a SessionManager class as follows:
public sealed class SessionManager
{
private const string USER = "User";
private SessionManager()
…
I have a view with
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<IEnumerable<StudentInfo>>" %>
in my view if i have IEnumerable I can do foreach..
but before that i need to access the properties for StudnetInfo..
StudentInfo clas having
Public…
Hi
I am new in iphone. I am add an my application MPMediaplayer for play video but when user move iphone from landscape to portrait play video can not play.
How to do this plz help me.
My problem is when i use xampp i see many error and when i use my web it has no error
Notice: Undefined index: action in C:\xampp\htdocs\xyz\index.php on line 3
Notice: Undefined index: usNick in C:\xampp\htdocs\xyz\config.php on line 11
Notice: Use of undefined constant setname -…
I have a table with 600+ columns imported from a csv with special chars % _ - in the column names, is there a way to change the column names to remove these special chars ?
the code can be tsql or tsql
Hi
I am new in iphone I am developing a application which is connected with sqlite database.
When we build application in simulator it show value from database to tableview in simulator. When we build that application in device this is not show the value th tableview. I am not…
I have jquery datepicker code where i am dispalying one calander control to dispaly dateand time
$("input[id^='exc-flwup-<%=Model.ExceptionID%>']").datepicker({
duration: 0,
buttonImage: '/Content/images/calender.gif',
buttonImageOnly:…
i have this code..
<table class="dashboard-table">
<thead>
<tr>
<th> </th>
<th>Worked</th>
</tr>
</thead>
<%
foreach (var e in Model.ExceptionsByType)
{…
I would like to use gtalk or any other messenger in my application but i don't know how to do this.can u please give me idea about how to solve this one.if u can provide me some web link to know more about this.
hi,
Hi I need to append the dropdownlist box with certain valus to the jquery grid column,
that is default dropdownlist for perticular column....
I am using this type of Jquery grid
http://www.trirand.net/demoaspnetmvc.aspx
can anyone help me out..
Thanks
hi,
$('tr td:first-child').click(function() {
var foobar = $(this).text();
$("#showgrid").load('/Product/List/Item?id=' + foobar);
});
when I am seding foobar value like this in the Actionresult method I am getting string id value perfectly but I am not…