Hi,
Can any body please provide me, how can we made custom template for the ScrollViewer.
Pointers to any simple tutorials will be greatly appreciated.
Thanks,
-Narendra
Ok. I have made a custom cell for my table, and it contains a text view. When I have multiple lines in the text view, I can scroll up and down, but in doing this the table also scrolls. How can I stop this behaviour? If anyone needs parts of my code or further details, please just ask. I am more than willing.
Thank you for your help
I have yet to use Entity Framework or .NET 4 so there will be a learning curve, but assuming good quality C# developers (who are yet to use Entity Framework and .NET 4.0), what would your ball park estimate be for say 50 pages containing text box, dropdowns and grids.
Would it be around 1-2 days per page?
I watched a free high quality video with Aaron Hillegass about Core Data vs Tokyo Cabinet. Besides that this guy is amazingly funny (really, if you want to laugh now, watch it!), he shows off Tokyo Cabinet beeing about 40x faster than Core Data.
I wonder if it's worth thinking about how to attach this to Core Data? Does that make any sense? Maybe as a custom atomic store or something like this?
Hello,
I want to implement a commenting system for some pages by using the build-in commenting framework of Django.
The only addition to the default commenting framework is that other registered users can up/down vote comments (one time allowed indeed), just like Digg or Reddit style.
I have found RedditStyleVoting however it seems out of date and not really covering what I am looking for.
The only experience I have so far with a touchscreen interface was one where everything was custom drawn, and I get the feeling it's not the most efficient way of doing it (even the most basic layout change is hell to make). I know plenty of GUI toolkits intended at keyboard & mouse interfaces, but can you advise something suited for touchscreens? Target platform is Windows, but cross-platform would be nice.
I am using WatiN for my web tests. In one of my web pages, I have a VBScript function which opens a dialogbox. I am unable to access it using WatiN.
I tried using WatiNTestRecorder; it was unsuccessful.
I tried this also:
http://blogs.dovetailsoftware.com/blogs/kmiller/archive/2008/07/16/scenario-testing-with-watin.aspx, unsuccessful again.
I get my datepicker control to bind fine to anything with a class of calendarTrigger on any of my pages, however on Popups (Of which use a Master Page and have the script files on it's master page) they don't bind to trigger datepicker UI elements.
Is there something I am missing ?
Hi,
Let's say i want to grab the first paragraphe in This wikipedia Page How to get the principal text between the title and CONTENTS box using XPath or DOM & PHP or something similar?
Is there any php library for that? i don't want to use the api because it's a bit complex.
Note: i just need that to add a widget under my pages that displays related infos from wikipedia.
Thanks
Hi,
I want to create a right to left UITableView.
right now I have the left to right table view.
I would like to know if there is an easy way to transfrom the left to right table into right to left using the latest iphone SDK?
I've tried the textAlignment on my custom table view cell but with no success.
Thanks
I'm really new to website development and for a project I need:
No public pages. All private.
Login+Password (Users, Admins)
Being able to upload XML-files from Android device
Parse this XML into something I can plot. Easy charting.
Admin users being able to read all sub-users uploads.
Doesn't have to look good.
No blog-post. Strictly XML-Charts.
I thought about using Wordpress, but I don't know if it's the best idea. I can code, but I don't have to much PHP + MySQL experience. Maybe there's something simpler?
Thanks for taking the time.
dear friends,
i have created a custom dialog class
public class NewPost extends Dialog
{
// functionality
}
now my requirement is to create listview inside it. i know we can create textboxes,buttons,dropdown list inside it.
but in order to create list view we should inherit our class from listActivity class
what you suggest is it possible or not if yes then how to achieve this using any interface or what?
any help would be appriciated.
Hi guys:
I do this query(1):
(1)SELECT * FROM t1 WHERE title LIKE 'key%' LIMIT 1
I need to do a second(2) query only if this previous query has no results
(2)SELECT * FROM t1 WHERE title LIKE '%key%' LIMIT 1
basically i need only 1 row who got the most close title to my key.
Atm i am using an UNION query with a custom field to order it and a LIMIT 1. Problem is I don't want to do the others query if already the first made the result.
Thanks
are there any alternatives to Xpath ? need to locate and extract specific element's texts for web scraping project.
xpath seem pretty limited against layout changes on web pages. slight shuffle, and xpath no longer works. also different browsers have different Xpaths as i discovered. Firefox automatically adds tbody after table, while IE doesn't and so on.
I need to design a site map page of my website in asp.net.
I am confuse whether to use custom site map and reterive information from databse or direct reterive information from database and bind it to hyperlink?Please help.
I am using the W3C XHTML validator to check my sites and I am getting some errors on pages with FBML. Most of the cause of such errors is the "&" character. Since FBML values and attributes are generated on the fly, I have no way to encode the character properly before displaying it.
Question: Is there a way for me to tell Facebook Connect to render the mark up properly?
Thanks.
I'm trying to write a rule to make that one can generalize, since multiple pages to pass the values are different. Right now I could do:
RewriteRule ^forum/([^/]{1,255})/([\+]{1})/((([a-z]+)([_]{1})([a-zA-Z0-9]+)([/]?))+)$ forum.php?name=$1&$5=$7 [L]
To address such as:
Nome+del+Forum/+/page_1/action_do
Should return:
forum.php?name=Nome+del+Forum&page=1&action=do
Instead, take only the last parameter (in this case action=do):
forum.php?name=Nome+del+Forum&action=do
How can I fix? Thanks in advance!
When I try to get all my "likes" (formerly fan pages) on Facebook Graph API, sometimes it returns me an empty set:
{
"data": [
]
}
I tried with https://graph.facebook.com/me/likes?access_token=MY_ACCESS_TOKEN and with graph.facebook.com/vinch/likes?access_token=MY_ACCESS_TOKEN but the result is exactly the same (empty).
Any idea of what it can be? I need it to know if a user likes (is fan of) a specific page.
I have an idea for an Eclipse plugin which I've been toying with. I need to be able to extend the Eclipse Java Editor component and add coloured overlays to the code based on pluggable external metrics. Unfortunately there doesn't appear to be any kind of syntax highlighting extension point.
Does anyone know how I might be able to extend the exisitng eclipse Java Editor to add custom highlighting rules?
Bear in mind I'm new to Eclipse plugin programming so please give as much detail as possible.
Is there a standard Rails 3 way of detecting uniqueness within a particular scope, or is this custom validation all I can do?
class Post < ActiveRecord::Base
# [named scope for recent posts]
validates do |post|
if Post.recent.where('url = ?', post.url).count > 0
errors[:url] = 'has already been posted recently - thanks anyway!'
end
end
end
(Haven't yet tried that exact code, so there may be errors, but you get the idea.)
When I trying to send form containing value with xml, I get HttpRequestValidationException:
A potentially dangerous Request.Form value was detected from the client
All approaches I found:
<%@ Page ValidateRequest="false" %> in .aspx-file.
<pages validateRequest="false" /> in
web.config.
[ValidateInput(false)] on
controller's action.
don't help me.
Hope for any advice.
I've created custom component which shows chart.
Now I need to make binding support for this component i.e. generated chart-image should be available (as array of bytes) to backing bean via binding mechanism.
I'd like to know some general info about binding implementation techniques. Any links and examples are welcome as well.
Thanks in advance!
Hi all
I am searching a SharePoint Server 2007 Webpart which can do following
* change password
* lost password recovery (e-mail)
* change password reminder (e-mail)
I have been searching the Internet but somehow there aint as many webparts as for example WordPress Addons. When I am lucky I can find individuals which made an Webpart which matches one of the specs :(
The only things which come near my specs are
http://www.envisionit.com/Products/Pages/ExtranetModuleforSharePoint.aspx
http://userchangepassword.codeplex.com
I am wondering where I can find community's which have lots of Webparts to download or sell. Does anybody of you know such community's?