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...
hi,
i am trying to form-post a sql file that consists on many INSERTS, eg.
INSERT INTO `TABLE` VALUES ('abcdé', 2759);
then i use re.search to parse it and extract the fields to put into my own datastore. The problem is that, although the file contains accented characters (see the e is a é), once uploaded it loses it and either error...
Given the following models:
class Graph(models.Model):
owner = models.ForeignKey(User)
def __unicode__(self):
return u'%d' % self.id
class Point(models.Model):
graph = models.ForeignKey(Graph)
date = models.DateField(primary_key = True)
abs = models.FloatField(null = True)
avg = models.FloatField(...
I am using the following JavaScript to add a number of inputs based on a number in a drop down menu. It works fine in firefox and chrome, but in IE7 the inputs all float left on a new line.
function add(number)
{
var foo = document.getElementById("listInputs2");
var count = 1;
foo.innerHTML = "";
while ( count <= (number) )
{
//Creat...
In Windows Form, I would modify the FormBorderStyle property in the Properties pane.
Any help?
...
Hey guys,
here is my html output:
<script language="javascript">
function append_suggestion() {
$('input[name="cn"]').append($('#rand-character').val());
}
</script>
<form name="form" action="/search/results" method="get" class="search-form" id="search-autocomplete">
<input size="28" class="search-field" id="cn" name="cn" typ...
I think I'm missing some simple here, but I can't figure it out for the life of me.
I'm using the set_radio() and set_checkbox() methods to return their values if validation fails, like this
<input type="radio" name="gender" value="male" <? if(!isset($thankyou)) { echo set_radio('gender', 'male'); } ?>/>;Male
<br />
<input type="radio...
In the following Form-code I have a FrmPrintKasTicket witch i start form another form. This Form should print a document based on information in a SQL database. When I use a button on this form (and remove the "PrintKasTicket();" under FrmKasTicket_Reload) it actually prints.
But when I envoke the printKasTicket-methode when the Frm is ...
Is there a field_load() function equivalent to node_load()? I want to get information about the type of a field and other validation constraints without going to the database myself.
Better yet, is there any function that will validate it for me, like is_valid_for_field(field_name, input), that would take a field name and a potential in...
Hi,
I have used Malsup's jQuery form plugins for a quite some times. The plugins working great and the file upload is working using hidden iframe technique.
Yesterday I tried to use it in Google Chrome browser, but it failed. This morning I try the example in the http://malsup.com/jquery/form/#file-upload but I got the same failed resu...
this form code is working in Mozilla , chrome but in internet explorer it is not working.
<form method="post" action="logincheck.php" >
<span class="meta">
<table>
</span>
<tr><td> <span class="meta">
<label >Username </label>
</span>
<label ></td>
<td> <input name="username" type="text" /></label></form>
</t...
I was recently informed that my shopping cart application breaks when viewed in Mobile Safari (iPhone, iPod Touch). The "add to cart" forms use the 'progressive enhancement' approach to support AJAX updates using jQuery. Some quick testing showed that the functionality indeed works with JavaScript disabled. Everything I've read so far in...
I have used a jquery UI tabs plugin in my page and in one of the tab i have put a form. SO for example , the tab calls a page form.php which has the form tag of html. Now form.php uses ajax and jquery to submit the form. Does this sound feasible.
$(document).ready(function(){
$("form#formdata").submit(function() {
...
Hi All,
Is there a standard way or library to copy and paste from a spreasheet to a web form?
When I select more than one cell from Excel I (obviously) lose the delimiter and all is pasted into one cell of the web form.
Does it have to be done in VB? or could the processing be done once the paste action is started on the web form?
Than...
I have a simple form that I need to submit automatically when text is entered.
I can use the onChange or onKeyUp without the best result.
HTML is:
<form action="" id="fusionSearchForm" method="post">
<input type="text" class="std_input" id="fusion_searchText" />
</form>
And jQuery
jQuery("#fusionSearchForm").keyup(function(...
As part of a subscriber acquisition I am looking to grab user entered data from a html form and write it to a tab delimited text file using php.The data written needs to be separated by tabs and appended below other data.
After clicking subscribe on the form I would like it to remove the form and display a small message like "thanks fo...
Well, imagine that we have a register form of a class Customer and we only ask three fields (name,surname,email) and after, when this user logged first time we want to complete this information.
First, we have in lib/form/doctrine a file called 'CustomerForm.class.php' wich is generated automatic on command line. In this file we 'setup'...
I've tried several things, but none of them work...
I have Form that should come in front of all Windows on clicking NotifyIcon. So here is what I tried:
private void notifyIcon1_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
this.TopMost = true;
this.BringToFront();
th...
If I have a standard HTML textbox: I can retrieve the value using Request.Form.
But how do I go about populating this textbox from the server-side? I tried
Request.Form["txtTest"] = "blah";
but got a readonly error.
...
Hy,
What is correctness in symfony to fill a form in two steps? Imagine that we have a entity called Enterprise and we want to create a form with only required fields and another form, that when the user login can fill the other non-required fields.
How is the correctness form? Now i have a form to registration ('lib/form/doctrine/Ente...