Tagged Questions
The added tag has no wiki summary.
2
votes
2answers
67 views
AS3 call a just added element
i'm adding a movieclip element ("lastSlide") to an other movieclip element("endLogoButton"). The added element has a child which is a button("endLogoButton"). How can i call that button?
...
2
votes
4answers
334 views
C# Text File upload and download issue
Okay so I have an application which uploads a text file to a web server and all works fine.
However, a line magically appears on the text file when it is downloaded
example:
textfile contains = ...
2
votes
2answers
318 views
TFS - how to see changes in local working copy?
I'm an experienced SVN user getting used to TFS at a new client site. The main problem I've had adjusting to the new tool is this - how can I get a listing of all files in my working copy that have ...
2
votes
4answers
605 views
How to detect the item restore on a ItemAdded() event on SharePoint
I know that when an item is restored from the recycle bin, the ItemAdded event is fired.
However, how can i detect if the item added comes from the recycle bin or if it is a new file.
Thanks
1
vote
2answers
367 views
EntityFramework show entities before saving changes
Entity Framework ObjectSet with its method ToList shows just saved entities. That means, when I call
context.AddToCustomers(myNewCust);
and then (without calling SaveChanges)
...
0
votes
2answers
57 views
dynamically added input fields not submitting
here's the jsFiddle. i'm sorry if it doesn't work properly; damn things rarely do for me... i hate jsFiddle, but it gets the code to you faster...
the php document it goes to simply does this:
...
0
votes
1answer
69 views
how to import swf in another one, added_to_stage? (as3, flash)
i have a class Team.as that imports another class CustomMenu.as. This works fine, when i launch Team.fla, the content of CustomMenu appears well.
But, in my project, Main.as imports Team.swf, and ...
0
votes
2answers
83 views
Editing row added to table with jQuery
I found this post: Editing and deleting a newly added table row using Jquery and that seemed like it was exactly what I was looking for, but I couldn't get thier suggested solution to work.
After ...
0
votes
1answer
237 views
Not able to add rows to dynamically generated table via onclick event handler using Jquery
I'm in the process of creating tables dynamically and appending rows to them dynamically as well, all done via Jquery, creating of tables dynamically is fine but not appending rows to the tables, this ...
0
votes
1answer
485 views
Editing and deleting a newly added table row using Jquery
I'm adding new rows dynamically to the existing table, the first column of the table holds the Edit & Delete buttons. I'm facing 2 problems with this:
Not able to Edit and Delete newly added ...
0
votes
1answer
57 views
DataRow which is added is not going to be delete doing table.Rows[i].Delete()?
Why is that? The state of the datarow is added. When I delete the row the state is unchanged. Why not deleted? Thats the reason my Delete Store Procedure is never called!
edit: the datarow is freshly ...
0
votes
1answer
132 views
similar_text() , php, how to show what text it is finding that is similar
I am experimenting with finding similar text between a string and an online article. I am playing with similar_text() in php that shows the percentage a string matches. But I am trying to figure out ...
0
votes
1answer
130 views
Folder and extension appearing after my domain name
A couple day ago i noticed that traffic had increased dramatically. Upon checking i noticed in my stats program that the extra traffic was from a direct source.
0
votes
5answers
237 views
Java inheritance - added methods
I want to have a base class, BaseConnect, which contains an OutputStream and children classes ObjectStreamConnect and DataStreamConnect. In my BaseConnect class I have OutputStream os; And in my Two ...
0
votes
2answers
176 views
Should I use the same controller and view for editing and creating models in ASP.NET MVC?
Should I use the same controller and view for editing and creating models in ASP.NET MVC, or should I create a view and controller action for creating and a view and controller action for editing?
...