The databinder tag has no wiki summary.
0
votes
1answer
67 views
How can I fetch a binary data stream via scala?
I want to download an image for a given url in a scala program. I am trying to do something like the following but all the dispatcher examples I can find talk about text, not data streams. Can anyone ...
2
votes
4answers
40 views
Repeater databinder.eval double quotes
I have a repeater like the following,
<asp:Repeater ID="rptEntries" runat="server">
<ItemTemplate>
<asp:LinkButton ID="lnk1" runat="server" ...
0
votes
0answers
279 views
SpringMVC how to Bind A Multi Select Option Element
I have four select option list two are populated with data form the database and two are multi selects which are bind to the POJO. I then use java script to add options form the database select option ...
0
votes
0answers
40 views
Composite Formatting for DataBinder.Eval data into Escaped String
I need to escape the second parameter of a databound function call into a string, but I cannot get the string format syntax correct. I need to format ImageType as a string with quotes, but I cannot ...
1
vote
2answers
101 views
Databinder.Eval double quotes
I have a problem and I can't figure it out how to solve it. I search for solutions but they did not work. So, I have a Datalist with ItemTemplate. I need to add google analytics on onclick event to ...
1
vote
1answer
153 views
Binding empty values to numerical fields in Play Framework 2 (Java)
I have forms where I want to be able to leave some numerical fields empty, but I get "Invalid value" errors from Form.bindFromRequest(). This seems like a common requirement, but I can't find any ...
0
votes
1answer
256 views
How to change the amount of columns in DataList (Webforms, C#)
I have made a web app which query's a database and returns the results in a Datalist.
The user can specify which columns to return. For the Datalist I have done this:
<asp:DataList ...
0
votes
2answers
125 views
Using the setAllowedFields() method in Spring
I'm using Spring 3.2.0. I have registered a few custom property editors for some basic needs as follows.
import editors.DateTimeEditor;
import editors.StrictNumberFormatEditor;
import ...
0
votes
1answer
31 views
Spring databinder reusing
I'm creating few objects in loop using DataBinder. I wonder if it is possible to reuse DataBinder object instead of create it each time.
Is it possible?
Now I have:
while (condition) {
obj = ...
2
votes
1answer
171 views
checking value trough IF in repeater
<asp:Repeater ID="rptEntries" runat="server" DataSourceID="dsEntries">
<ItemTemplate>
<%
if (Convert.ToInt16(Eval("entryWinner")) == 1)
{
%>
...
0
votes
2answers
78 views
How to iterate on a T object to find a property?
I have this code that I am currently adapting to use nested entity (entity framework). I have an entity which contains 2 property which are 2 children entities.
The first step was to read the ...
0
votes
0answers
41 views
Accessing the ItemStyle of the current row of ASP.NET Datagrid
I have a datagrid with an ItemStyle and AlternatingItemStyle (similar to simplified example below) and would like to know the CssClass of the row being rendered from inside of the databinder code. As ...
0
votes
1answer
87 views
repeater ASP .NET databind to navigationURL
I'm trying to bind an ID to an already defined navigation url from a hyperlink.
<asp:HyperLink ID="HyperLink4" runat="server"
NavigateUrl='accounts_history.aspx?accountId=<%# ...
0
votes
1answer
273 views
How to bind form field to a Map of Objects in Play 2.03
Trying to bind a field to a map of objects I got this error
"*[NullValueInNestedPathException: Invalid property 'wrappedText[index]' of bean class [models.Simple]: Could not determine property type ...
1
vote
2answers
230 views
ASP.NET MVC 3 DataBinder.Eval on Viewmodel object throws “does not contain property”
I have a view that was using a standard Model but now I need to add information from two different models on the page. I created a ViewModel after doing some research to handle this. Now I am ...
1
vote
0answers
111 views
Alternative(s) to DataBinder.Eval for .NET Framework Client Profile?
I would like to have the functionality of DataBinder.Eval (i.e., perform runtime databinding); however, DataBinder.Eval is defined in the System.Web assembly, which is not available on the .NET ...
0
votes
2answers
477 views
Databinder inside a “for” loop in an ASPX page
I'm still trying to understand how I can take advantage from DataBinder ( Is there a way to use a DataBinder.Eval statement as an index of a specific array in an ASPX page? ).
I'm currently building ...
0
votes
0answers
182 views
Is there a way to use a DataBinder.Eval statement as an index of a specific array in an ASPX page?
Is there a way to use a DataBinder.Eval statement as an index of a specific array in an ASPX page?
I'm trying to develop a page containing a list of bibliographic references, for which I'm using the ...
1
vote
1answer
629 views
Spring MVC custom editor and select-options bad performance
Im using custom editor in Spring MVC to map string valuest to my domain objects. Simple case: User object refers to Company (User.company -> Company). In User form I register data binder:
protected ...
0
votes
2answers
87 views
DataBinder in asp.net
i have this: ( useing Repeater but this bit long with all the fields problem is with this one)
<td valign="top">
<%#DataBinder.Eval(Container.DataItem, "Category")%>
</td>
and :
...
0
votes
0answers
7 views
How do I show the text of a user control in a separate web application solution
I have a task where I need to display the name of a chosen user in a SharePoint dialog modal. This task is using two separate solutions. The first solution displays the user control, and allows you ...
0
votes
2answers
107 views
databinder for wicket concept & status
Seems like Wicket + DataBinder(https://github.com/wicket-databinder/wicket-databinder) is good solution if you know only plain java and need to write data-driven web app, as i am. But when i use auth ...
0
votes
3answers
1k views
using values within if conditions in mark up
I want to use a value that is pulled from the SQL within the if statement. Ideally i want to do the equivalent of
<% If DataBinder.Eval(Container, "DataItem.BookID") == 1 Then%>
Is there a ...
1
vote
1answer
196 views
Databinder Eval value.value will not work
I'm testing databinds in ASP.NET with C# Visual Studio. But I've a irritating problem... To show all products from a database I use a repeater with a datasource query. The query is:
SELECT titel, ...
4
votes
3answers
572 views
What is the standard ASP.net data binding syntax?
Microsoft's introduction to data-binding using the asp:Repeater control gives the syntax to fetch a value:
<b><%# DataBinder.Eval(Container.DataItem, "orderid") %></b>
This syntax ...
1
vote
3answers
1k views
Scala Dispatch library: how to handle connection failure or timeout?
I've been using the Databinder Dispatch library in a client for a simple REST-ish API. I know how to detect if I get an HTTP response with an error status:
Http x (request) {
case (200, _, _, ...
2
votes
2answers
239 views
.net WinForms data binding using Lambda instead of property
In my project I have a model and I want to bind the visible state of a label using one of the model properties. I do not want to add another ShowLabel property to the model. I want to be able to write ...
3
votes
2answers
924 views
Difference between DataBinder and ConversionService in Spring
I am experiencing some confusion in the use and purpose of Spring's DataBinder and ConversionService with regards to binding web requests to model objects. This has arisen because I have recently ...
0
votes
1answer
247 views
DataBinder.Eval error in asp.net
I have created a class doing some jobs like GridView inherit from System.Web.UI.WebControls.WebControl.
public class IHGridView : System.Web.UI.WebControls.WebControl
{
// inside here, actually ...
2
votes
1answer
539 views
Getting a 302 http redirect location with Databinder-Dispatch
With databinder-dispatch 0.8.3 I'm trying to get the redirect url from a 302 http response, but I get the following exception:
Caused by: dispatch.StatusCode: Unexpected response code: 302
Here's ...
2
votes
4answers
5k views
C# - Looping trough a Repeater control and accessing values added via DataBinder.Eval()
I have a Repeater control that adds rows to a table. The data inside each cell comes from a Datatable that is bound to the repeater.
Simplified Example:
<asp:Repeater ID="Repeater1" ...
2
votes
1answer
859 views
Akka REST service + dispatch problem
I followed the example here. It works, fine. But now I need to perform some business logic in case get:Get =>
Required business logic includes using dispatch library. In a nutshell, I do a request ...
0
votes
2answers
105 views
Using databinder syntax inside a TD on aspx page?
I'm thinking this should be possible or something like it:
<td <%# "style=" DataBinder.Eval(Container.DataItem, "CustName") == "T" ? "border:none" : "border:solid"%>>
But it's not doing ...
0
votes
1answer
694 views
Externalize @InitBinder initialization into WebBindingInitializer
There are two major means of data binding initialization, but there is a drawback in the oldschool one, that I can't figure out. This annotation way is great :
@InitBinder("order")
public void ...
1
vote
0answers
316 views
Using DataBinder for casting the whole object in one step
Is it possible to cast the whole object using DataBinder.Eval() instead of casting it by property. e.g.:
// instead of this
var p = new Person();
p.FirstName = ...
1
vote
2answers
632 views
How do I set up databinder dispatch to use in Eclipse?
I want to write some simple HTTP requests in Scala, but the Databinder Dispatch library only has instructions for sbt. As I'm a relative Eclipse newbie, can someone provide instructions on how I use ...
1
vote
2answers
2k views
Why is my Hibernate Query returning stale data?
Quick Version
Basically, I'm updating a Hibernate Table and subsequent queries are loading a stale value.
Detailed Version
Hibernate (3.3.1.GA) and EhCache (2.4.2).
Persisted Book object with a ...
2
votes
1answer
176 views
Error while Embedding Xpath Code and Inline Server Tags
Grid View template field -
<% if ((Convert.ToInt64(XPath("NoOfGuests")) < 0))
{ %>
<asp:ImageButton ID="imgbtnAddResByList"
runat="server"
...
0
votes
0answers
679 views
Spring WebDataBinder for binding multiple fields into a field of type Date
Could please anybody figure out a way how to use Spring data binders for getting values of a few fields (integers) : year, month, day, hour, minute from request and bind them into a Date field ?
I ...
1
vote
2answers
1k views
Why won't DataBinder.Eval work
I am trying to create a simple menu system using repeaters. In the system I want to use a different formatting for class sub items and am trying to use an If that checks the DataBinders results and ...
0
votes
1answer
972 views
Binding to a List<string> using DataBinder.Eval
I have the following object:
CrossTabDataObject
{
string RowName{get;set;};
int RowId{get;set;}
List<string> CellContents = new List <string>();
//Constructor..... etc.
}
...
2
votes
3answers
4k views
Using DataBinder.Eval() in style attribute of an asp.net control
I've a asp.net linkbutton inside asp.net repeater control which renders multiple link buttons. I want to set the style of each and every linkbutton dynamically.
I'm trying
...
3
votes
5answers
3k views
Accessing object property as string and setting its value
I have an object in csharp from the class Account
each account have a owner, reference, etc.
One way I can access an accounts properties is through accessors like
account.Reference;
but I would ...
0
votes
5answers
6k views
DataBinder.Eval in c#
Hi anybody know how to use databinder.eval in c#
Actually I've tried this
LinkButton lnkName = new LinkButton();
lnkName.CommandArgument = DataBinder.Eval("object","<%#COURSE_ID%>");
it is ...
3
votes
3answers
306 views
http(/* argument here */) How is this Object (Http) being used without an explicit or implicit method?
In the example for coding with Json using Databinder Dispatch Nathan uses an Object (Http) without a method, shown here:
import dispatch._
import Http._
Http("http://www.fox.com/dollhouse/" ...
0
votes
0answers
57 views
Looking for guidance on data binding
Is their any mechanism in the .net framework for a binding mechanism between say as set of data source objects and an object to be built from them. 3.5+.
I'm not looking for binding to asp.net or ...
1
vote
1answer
1k views
Problem with Scala Dispatch Databinder library
I am using the Dispatch Databinder library for Http in Scala.
I have this method.
def testCheckPage(url:String):String = {
try {
var http = new Http
var request = new Request(url) ...
1
vote
2answers
367 views
How to get Castle MonoRail's DataBinder/SmartDispatcherController to bind against types containing properties that are interfaces?
We're using interfaces to represent entity classes in our domain model. We have concrete implementations of these by virtue of using LinqToSql. We have added a factory method to each LinqToSql class ...
15
votes
9answers
51k views
Formatting DataBinder.Eval data
How can I format data coming from a DataBinder.Eval statement in an ASPX page?
For example, I want to display the published date of the news items in a particular format in the homepage. I'm using ...

