Hi,
i have master-content page scenario.I have a link button on content page. that redirects to other page. but with redirection it carrying the parameters. I want to hide this querystring parameters .I tried with POST() in Form tag of master page . but that does not affecting. What have to do ?
...
I have a main application window that also implements a dock panel. At the bottom of one of the existing dock panels, I want to add a window that the user can hide or view at will. What's the best way to implement this? I can envision most of the code behind this, I just need to figure out the appropriate control for this window to appea...
Say I have a DataGridView Control, this grid is filled through a DataTable.
Now, I'd like to add some dynamic filtering, by means of a checkbox.
When the _CheckedChanged event is launched and Checked is set to true, I exectue a filter;
DataRow[] rows = grid.Select("foo = bar");
No I want to only show these records in the grid.
Now, wh...
I've got a html table with td class-formlabel and text (HP)Hello
Why doesn't this replace the text?
$(this).text().replace('(HP)','');
Why does this remove formating if this is $("td.ms-formlabel").each(function(){
$(this).text("hello");
How can hide the TR rows for a match given the rendered html above and the below code? (Note I ...
I have this html which is an output by php.
...
...
<tr valign='top'>
<td>1</td>
<td class="parent">
<a href="http://127.0.0.1/ci/index.php/admin/menus/edit/1">Main menu
</a></td>
<td align='center'>active</td>
<td align='center'>0</td>
<td class="parent" >0</td>
<td align='center'></td>
<td align='center'>
<a href="http://127.0.0.1/...
I have this page:http://www.ryancoughlin.com/files/xml/ - if you select User -> Someones name
You will see a table populate. I am trying to only show JUST the results of the user you selected. Since I am actually loading an XML file I cant really send data to it. So I figured, load them all then hide EVERY entry but the one you selected...
Hi,
I've been searching for hours now and haven't found anything that helps.
What I want to do:
I need to call the check_login-Method (as below), which needs parameters.
redirect_to check_login_users_url(
:user => {:name => input[1], :password => input [2] },
:stylesheet => 'scaffold',
:method => :get)
The point is that thes...
<a rel="abc" href="#mydiv">link</a>
<div id="mydiv">content</div>
If rel="abc", find element with ID that matches href value and hide it.
My try:
$('[rel*=abc]').attr("href").hide();
Thanks for your help!
...
I've been at this for a while and I can't seem to crack it.. I have some javascript trying to hide sibling divs, besides the one that is passed through the function. Here's the html:
<div id = "chat_content">
<div id = "chat_content_1">This is div one</div>
<div id = "chat_content_2">This is div two</div>
<div id = "chat_content_3">T...
I'm trying to use SSRS URL access (http://mydomain.com/ReportServer?/Reports ....) such that the URL with hidden report parameters is never visible in the browser.
Many references suggest that simply encapsulating the Report/Server url within a form with method=post will do the trick.
While the form posts without showing an param in t...
I don't want to show the virtual keyboard.
I tried the below method but it doesn't make any difference.
InputMethodManager imm = InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(enter_count.getWindowToken(), 0);
enter_count is my edit text
I have tried reading up on the InputMethod Ma...
how do i hide() a form?
i would like when user clicks the X on the form to hide it instead of closing it.
i have tried this.hide() in FormClosing but it still closes the form.
please help.
...
Currently I am using jQuery to hide/show select options using following code.
$("#custcol7 option[value=" + sizeValue + "]").hide();
This works fine in Firefox, but doesnt do any good in other browsers. How to I hide options from select in Chrome, Opera and IE?
...
Hi all, i looking for your help please
i use simple php code like:
$file = $_SERVER["SCRIPT_NAME"];
//echo $file;
$break = Explode('/', $file);
$pfile = $break[count($break) - 1];
echo $pfile;
than output $pfile e.g. fileforme.php
but that i want is output of $pfile become fileforme
because i want use it to:
$txt['fl']= $pfile ;
...
Hi there, i'm having a real trouble with UITabBarController. I have a simple foto app, and I'm trying to simulate almost the same behaviour as the PhotoApp from the Iphone
the main view controler is the tabbar itself, i also have a NavBar and a status bar on top.
What i want is on tap to hide the bars (not with timer, just on tap).
The ...
I am relatively new to jQuery. What I have is an app that is displaying a list of content items from the database in a table.
If I click the title link of the page, it will load the page to edit in a tab (clicking teh tab lets me view that form to edit).
My problem is that in using .load and creating the html inside an empty div, my c...
I have the following layout in my grid
<Grid>
<Grid.RowDefinitions >
<RowDefinition Height="50" />
<RowDefinition />
</Grid.RowDefinitions>
<Button Click="Button_Click" Grid.Row="0" Width="50" Grid.Column="2" Content="Test" />
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition Wid...
I've been trying to make an option show and hide(possibly toggle) in my browser action popup without success.
The code below is the body of my popup
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="popup.js"></script>
<div class="show">
<a href="#" class="showcontent">Show</a>
<a href...
I want to create a "Hide/Show Column" function for a GridView.
Scenario: When user right-clicks to the header of a column and select "Hide", all the selected column will be hidden.
Status: This is easy by setting "Visible" property or setting the Width to 0. But I want to imitate the effects done by Excel when a column is hidden. The ...
I've been using grids to hold my controls for a new app. Such as;
<Grid Margin="5">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="150" />
<ColumnDefinit...