i want to create a 2d array dynamically in c++ language. But in that 2d array columns should be of different size. i mean to say that 2d array should not be in M * N.
It should be something like....
1 2 next line
3 4 5 next line
2 3 4 5 next line
5 next line
4 5 7
I am able to create 2d array in above manner but how to display content of array…
Hello friends.
this is the code i am using for my Html.BeginForm..
$('#PbtnSubmit').click(function() {
$('#PricingEditExceptions input[name=PMchk]').each(function() {
if ($("#PricingEditExceptions input:checkbox:checked").length > 0) {
var checked = $('#PricingEditExceptions…
This is my selectall button code..on clicking this i am selecting all checkboxes..
**$('#PbtnSelectAll').click(function() {
$('#Fieldset input[type=checkbox]').attr('checked', 'checked');
$('#PbtnSubmit').show();
$('#PbtnCancel').show();
});
**
This code working in Firefox not in…
Hello friends
I have two button one is SelectAll then MassEdit..
my code for select all is
$('#btnAll').click(function() {
$('#ExceptionDetails input[type=checkbox]').attr('checked', 'checked');
});
this check all the chekcboxes in my view.. then I have other button code which needs to take only…
hi,
I have a javascript funtion..
<script type="text/javascript">
var RowClick = function() {
$("#mytable").click(
$("#showgrid").load('/Products/List/Items/'));
};
</script>
Can I call this funtion on onclick evnt on tr?
I am calling soemthing like this?
<tr class="something"…
During compilation and linking.....what is use of .exp and what is the difference between .lib and .dll . I know that .lib will be used while linking and .dll will be used when running the program... but what exactly is the difference between .lib and .dll does .lib contain the code for the functions comming from .dll?…
var value;
$("#Grid1").click(function(e) {
var row = jQuery(e.target).parent();
value= row.attr("id");
});
var onrowclick = function() {
("#Grid1").click($("#showgrid").load('/Names/Friends/satish/' + value));
};
i am trying to send the value on URL..
when I am…
hello friends
I have List items = new List();
and UI i have a textbox I am entring and ListItem..
when I enter the value in textbox I need to add values to the listitem..?
can anybody help me out/.
thanks
I have a class
public Student student {get;set;}
public Students students {get;set;}
both class properties are same..
I am getting student values from data base.. I need to assign those values to students..
can anybody tell me how to do this?
What should I learn after learning C++?
I have read C++ from books like C++ Primer, Effective C++ etc but now I want to learn some advanced topics.
So what should I learn now,any suggestions?
Hello,
I want to develop iPhone application should have the ability to count the number of phrases that are received when user sing on mic. This application should also have the ability to decipher whether the users phrases are in or out of cadence with a preset beat.When user sing on mic Instrumental music only play.…
i am working on a project where i am using SysRc values as return values from some function like SUCCESS and FAILURE ond sum enums .
Now i want to know how to get them print?
Can semantic errors be detected by the compiler or not? If not when do the errors get detected?
As far as I know semantic errors are those errors which result from the expressions involving operators with incorrect number/type of operands.
For example:
n3=n1*n2;//n1 is integer, n2 is a string, n3 is an integer
…
Hi , I was trying to acces the datagrid at runtime and want to assign the data to it like
public function getGridData(reportsArray:ArrayCollection):void{
reportData = reportsArray;
trace(" The length of the datagrid is "+reportData.length);
graphDataGrid.dataProvider =…
I had a piece of code which uses windows SHFileOperation function with FO_MOVE operation. Additional flags specified were FOF_NOCONFIRMATION | FOF_NOERRORUI | FOF_SILENT.
A particular weird behavior was observed when the destination drive was full. In this case, MOVE could not place the file in destination…
I need to Get the Entire Row values when I click on jquery grid row.. here is the code I am using for that
var RowClick = function(e) {
var resultArray = $("#Grid td:first:child").closest('tr').find('td').map(function() {
alert(resultArray);
});
};
For this…
Hello friends I am using this code in my view..
$("#Fieldset1").find("input, select,textarea").attr('disabled', 'disabled');
this code i am in one view...for one user only one time...if I select 3 users this view will execute three times.. using this code I can able to disable inputfor one one…
I have a user control
<input id="check" type="checkbox" />
<label> </label>
<fieldset class="clearfix" id="fieldset-exception">
<legend>Student Information</legend>
<div class="fiveper">
<label for="StudentID">
…
hello friends, I am using jquery grid
I have jquery grid with user data..First Coulum is ID..
here is the code
$("#table").click(function(e) {
var row = jQuery(e.target).parent();
Name = row.attr("id");
Friends(Name);
});
Now when i…
My Application get crashing ...
its loading data of all the cities... and when i click its displaying my detailed view controller....
when iam getting back from my controller... and selecting another city my application get crashed.. Please help me out.
To get idea i am pasting my code.
#import…